From: Richard M. Stallman Date: Wed, 26 May 1993 21:17:31 +0000 (+0000) Subject: (hexlify-command, dehexlify-command): Use exec-directory. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~95923 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=a22f4c7d340029af77c597bea1159b00510bb996;p=emacs.git (hexlify-command, dehexlify-command): Use exec-directory. --- diff --git a/lisp/hexl.el b/lisp/hexl.el index 20e9c161754..f3d0890e505 100644 --- a/lisp/hexl.el +++ b/lisp/hexl.el @@ -1,4 +1,4 @@ -;;; hexl-mode.el --- edit a file in a hex dump format using the hexl filter. +;;; hexl.el --- edit a file in a hex dump format using the hexl filter. ;; Copyright (C) 1989 Free Software Foundation, Inc. @@ -62,11 +62,13 @@ and \"-de\" when dehexlfying a buffer.") (defvar hexl-options (format "-hex %s" hexl-iso) "Options to hexl-program that suit your needs.") -(defvar hexlify-command (format "%s %s" hexl-program hexl-options) +(defvar hexlify-command + (format "%s%s %s" exec-directory hexl-program hexl-options) "The command to use to hexlify a buffer. It is the concatination of `hexl-program' and `hexl-options'.") -(defvar dehexlify-command (format "%s -de %s" hexl-program hexl-options) +(defvar dehexlify-command + (format "%s%s -de %s" exec-directory hexl-program hexl-options) "The command to use to unhexlify a buffer. It is the concatination of `hexl-program', the option \"-de\", and `hexl-options'.")